ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
26 lines
675 B
Nix
26 lines
675 B
Nix
{ stdenv, fetchFromGitHub, buildPythonPackage
|
|
, dbus-python, cryptography }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "secretstorage";
|
|
version = "2.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mitya57";
|
|
repo = "secretstorage";
|
|
rev = version;
|
|
sha256 = "1sjd2jjbxgkkxyrfwx89x0hsnn39w2cr2qkxbg1iz52znr4sqism";
|
|
};
|
|
|
|
propagatedBuildInputs = [ dbus-python cryptography ];
|
|
|
|
doCheck = false; # requires dbus session
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/mitya57/secretstorage";
|
|
description = "Python bindings to FreeDesktop.org Secret Service API";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = with maintainers; [ teto ];
|
|
};
|
|
}
|