mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 00:14:43 +00:00
0215034f25
when they already rely on SRI hashes.
23 lines
511 B
Nix
23 lines
511 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "easyprocess";
|
|
version = "1.1";
|
|
|
|
src = fetchPypi {
|
|
pname = "EasyProcess";
|
|
inherit version;
|
|
hash = "sha256-iFiYMCpXqrlIlz6LXTKkIpOSufstmGqx1P/VkOW6kOw=";
|
|
};
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Easy to use python subprocess interface";
|
|
homepage = "https://github.com/ponty/EasyProcess";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = with maintainers; [ layus ];
|
|
};
|
|
}
|