keyrings.alt: init at 2.3

This commit is contained in:
Judson 2018-05-13 14:20:59 -07:00
parent f252c72669
commit 42d0ce8a28
No known key found for this signature in database
GPG key ID: 12E21E4B9A3F82AA

View file

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi, six
, pytest, unittest2, mock, keyring
}:
buildPythonPackage rec {
pname = "keyrings.alt";
version = "2.3";
src = fetchPypi {
inherit pname version;
sha256 = "5cb9b6cdb5ce5e8216533e342d3e1b418ddd210466834061966d7dc1a4736f2d";
};
propagatedBuildInputs = [ six ];
# Fails with "ImportError: cannot import name mock"
doCheck = false;
checkInputs = [ pytest unittest2 mock keyring ];
meta = with stdenv.lib; {
license = licenses.mit;
description = "Alternate keyring implementations";
homepage = https://github.com/jaraco/keyrings.alt;
maintainers = with maintainers; [ nyarly ];
};
}