nixpkgs/pkgs/development/python-modules/parse/default.nix
R. RyanTM 6e54bd54b9 python37Packages.parse: 1.11.1 -> 1.12.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-parse/versions
2019-04-15 19:30:37 -07:00

24 lines
538 B
Nix

{ stdenv, fetchPypi
, buildPythonPackage, python
}:
buildPythonPackage rec {
pname = "parse";
version = "1.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "0hkic57kaxd5s56ylbwslmngqnpab864mjj8c0ayawfk6is6as0v";
};
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 ];
};
}