20 lines
357 B
Nix
20 lines
357 B
Nix
|
{
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
python-stdnum
|
||
|
}:
|
||
|
buildPythonPackage rec {
|
||
|
pname = "barcodenumber";
|
||
|
version = "0.5.0";
|
||
|
format = "wheel";
|
||
|
src = fetchPypi {
|
||
|
inherit pname version format;
|
||
|
sha256 = "sha256-VZfHLwSF9aDoy5L1x4O2mu8/f2ijYKgyjCrQ1KKY5Ho=";
|
||
|
python = "py3";
|
||
|
dist = "py3";
|
||
|
};
|
||
|
buildInputs = [
|
||
|
python-stdnum
|
||
|
];
|
||
|
}
|