nixpkgs/pkgs/development/python-modules/parse/default.nix

24 lines
538 B
Nix
Raw Normal View History

{ stdenv, fetchPypi
2017-08-24 04:32:24 +02:00
, buildPythonPackage, python
}:
buildPythonPackage rec {
pname = "parse";
version = "1.12.0";
2017-08-24 04:32:24 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "0hkic57kaxd5s56ylbwslmngqnpab864mjj8c0ayawfk6is6as0v";
2017-08-24 04:32:24 +02:00
};
checkPhase = ''
${python.interpreter} test_parse.py
'';
meta = with stdenv.lib; {
homepage = https://github.com/r1chardj0n3s/parse;
description = "parse() is the opposite of format()";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ alunduil ];
};
}