mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.inflection: use fetchpypi, run tests (0.3.1)
This commit is contained in:
parent
cf62c0e884
commit
fde8307846
@ -1,21 +1,23 @@
|
||||
{ lib, fetchurl, buildPythonPackage, pytest } :
|
||||
{ lib, fetchPypi, buildPythonPackage, pytest } :
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.3.1";
|
||||
name = "inflection-${version}";
|
||||
pname = "inflection";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url= "mirror://pypi/i/inflection/${name}.tar.gz";
|
||||
sha256 = "1jhnxgnw8y3mbzjssixh6qkc7a3afc4fygajhqrqalnilyvpzshq";
|
||||
};
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1jhnxgnw8y3mbzjssixh6qkc7a3afc4fygajhqrqalnilyvpzshq";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pytest ];
|
||||
checkInputs = [ pytest ];
|
||||
# Suppress overly verbose output if tests run successfully
|
||||
checkPhase = ''pytest >/dev/null || pytest'';
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/jpvanhal/inflection;
|
||||
description = "A port of Ruby on Rails inflector to Python";
|
||||
maintainers = with lib.maintainers; [ NikolaMandic ilya-kolpakov ];
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
meta = {
|
||||
homepage = https://github.com/jpvanhal/inflection;
|
||||
description = "A port of Ruby on Rails inflector to Python";
|
||||
maintainers = with lib.maintainers; [ NikolaMandic ilya-kolpakov ];
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user