depot/third_party/nixpkgs/pkgs/development/python-modules/parse/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

23 lines
542 B
Nix

{ 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 ];
};
}