nixpkgs/pkgs/development/python-modules/xattr/default.nix
Matthew Bauer 290a5d916e treewide: update homepages to https where available
Based on "problems" from repology:

https://repology.org/repository/nix_unstable/problems

Mostly simple changes to reflect redirects.
2019-04-15 10:10:05 -04:00

33 lines
619 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, python
, cffi
}:
buildPythonPackage rec {
pname = "xattr";
version = "0.9.6";
src = fetchPypi {
inherit pname version;
sha256 = "7cb1b28eeab4fe99cc4350e831434142fce658f7d03f173ff7722144e6a47458";
};
propagatedBuildInputs = [ cffi ];
# https://github.com/xattr/xattr/issues/43
doCheck = false;
postBuild = ''
${python.interpreter} -m compileall -f xattr
'';
meta = with stdenv.lib; {
homepage = https://github.com/xattr/xattr;
description = "Python wrapper for extended filesystem attributes";
license = licenses.mit;
};
}