summary refs log tree commit diff
path: root/pkgs/development/python-modules/parse/default.nix
blob: c5c0c1d7ae6d21c6271f482f5a17f82f4b07d15d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, fetchPypi
, buildPythonPackage, python
}:
buildPythonPackage rec {
  pname = "parse";
  version = "1.18.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "91666032d6723dc5905248417ef0dc9e4c51df9526aaeef271eacad6491f06a4";
  };

  checkPhase = ''
    ${python.interpreter} test_parse.py
  '';

  meta = with lib; {
    homepage = "https://github.com/r1chardj0n3s/parse";
    description = "parse() is the opposite of format()";
    license = licenses.bsdOriginal;
    maintainers = with maintainers; [ alunduil ];
  };
}