mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
18 lines
340 B
Nix
18 lines
340 B
Nix
{ buildPythonPackage, fetchPypi, atpublic }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flufl.i18n";
|
|
version = "3.2";
|
|
|
|
propagatedBuildInputs = [ atpublic ];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "flufl.i18n" ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-w1yPjqtmrbf9ZKFCCGAQUGbSs2y2VbM/+xSv6OIj7WI=";
|
|
};
|
|
}
|