17 lines
527 B
Nix
17 lines
527 B
Nix
self: super: with super.python3Packages; {
|
|
heybrochecklog = buildPythonApplication rec {
|
|
pname = "pywalfox-native";
|
|
version = "2.8.0rc1";
|
|
pyproject = true;
|
|
|
|
src = super.fetchurl {
|
|
url = "https://test-files.pythonhosted.org/packages/89/a1/8e011e2d325de8e987f7c0a67222448b252fc894634bfa0d3b3728ec6dbf/pywalfox-${version}.tar.gz";
|
|
sha256 = "89e0d7a441eb600933440c713cddbfaecda236bde7f3f655db0ec20b0ae12845";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "pywalfox" ];
|
|
};
|
|
}
|