mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
python: py: 1.5.3 -> 1.5.4
This commit is contained in:
parent
87712ad7eb
commit
f667b56d36
1 changed files with 5 additions and 3 deletions
|
@ -1,16 +1,18 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm }:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "py";
|
pname = "py";
|
||||||
version = "1.5.3";
|
version = "1.5.4";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881";
|
sha256 = "3fd59af7435864e1a243790d322d763925431213b6b8529c6ca71081ace3bbf7";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Circular dependency on pytest
|
# Circular dependency on pytest
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
buildInputs = [ setuptools_scm ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Library with cross-python path, ini-parsing, io, code, log facilities";
|
description = "Library with cross-python path, ini-parsing, io, code, log facilities";
|
||||||
homepage = http://pylib.readthedocs.org/;
|
homepage = http://pylib.readthedocs.org/;
|
||||||
|
|
Loading…
Reference in a new issue