mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
18 lines
355 B
Nix
18 lines
355 B
Nix
{ buildPythonPackage, fetchPypi, atpublic }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flufl.i18n";
|
|
version = "3.1.4";
|
|
|
|
propagatedBuildInputs = [ atpublic ];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "flufl.i18n" ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "e19036292a825a69f0e0a87566d1628830c69eecd3b0295d22f582039477a6bb";
|
|
};
|
|
}
|