mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
pythonPackages.javaproperties: init at 0.5.2
This commit is contained in:
parent
95ead8e3df
commit
5ec3859cd6
32
pkgs/development/python-modules/javaproperties/default.nix
Normal file
32
pkgs/development/python-modules/javaproperties/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub
|
||||
, six
|
||||
, pytest
|
||||
, dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.5.2";
|
||||
pname = "javaproperties";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jwodder";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "14hrp94cjj44yldf3k71wbq88cmlf01dfadi53gcirnsa56ddz5d";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
checkInputs = [ dateutil pytest ];
|
||||
checkPhase = ''
|
||||
rm tox.ini
|
||||
pytest -k 'not dumps and not time' --ignore=test/test_propclass.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Microsoft Azure API Management Client Library for Python";
|
||||
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
@ -6238,6 +6238,8 @@ in {
|
||||
|
||||
jaraco_stream = callPackage ../development/python-modules/jaraco_stream { };
|
||||
|
||||
javaproperties = callPackage ../development/python-modules/javaproperties { };
|
||||
|
||||
tempora= callPackage ../development/python-modules/tempora { };
|
||||
|
||||
hypchat = callPackage ../development/python-modules/hypchat { };
|
||||
|
Loading…
Reference in New Issue
Block a user