mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
29 lines
638 B
Nix
29 lines
638 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyxattr";
|
|
version = "0.8.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-SMV47PjqC9Q1GxdSRw4wGpCjdhx8IfAPlT3PbW+m7lo=";
|
|
};
|
|
|
|
# IOError: [Errno 95] Operation not supported (expected)
|
|
doCheck = false;
|
|
|
|
buildInputs = with pkgs; [ attr ];
|
|
|
|
meta = with lib; {
|
|
description = "Python extension module which gives access to the extended attributes for filesystem objects available in some operating systems";
|
|
license = licenses.lgpl21Plus;
|
|
inherit (pkgs.attr.meta) platforms;
|
|
};
|
|
}
|