6e54bd54b9
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
24 lines
538 B
Nix
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 ];
|
|
};
|
|
}
|