mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
add package python-pyxattr
This commit is contained in:
parent
7620bd06cf
commit
b39897bdfd
|
@ -1994,7 +1994,26 @@ let pythonPackages = python.modules // rec {
|
|||
};
|
||||
});
|
||||
|
||||
|
||||
|
||||
pyxattr = buildPythonPackage (rec {
|
||||
name = "pyxattr-0.5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/downloads/iustin/pyxattr/${name}.tar.gz";
|
||||
sha256 = "0jmkffik6hdzs7ng8c65bggss2ai40nm59jykswdf5lpd36cxddq";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = [ pkgs.attr ];
|
||||
|
||||
meta = {
|
||||
description = "A Python extension module which gives access to the extended attributes for filesystem objects available in some operating systems.";
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
pyyaml = buildPythonPackage (rec {
|
||||
name = "PyYAML-3.09";
|
||||
|
||||
|
|
Loading…
Reference in a new issue