1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 18:46:32 +03:00
nixpkgs/pkgs/development/python-modules/parse/default.nix

24 lines
552 B
Nix
Raw Normal View History

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