mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 19:34:06 +00:00
pythonPackages.typed-ast: 1.0.1 -> 1.0.2
This commit is contained in:
parent
b27dfdbe66
commit
47f7817037
@ -1,13 +1,16 @@
|
||||
{ buildPythonPackage, fetchzip, isPy3k, lib, pythonOlder }:
|
||||
{ buildPythonPackage, fetchPypi, isPy3k, lib, pythonOlder }:
|
||||
buildPythonPackage rec {
|
||||
name = "typed-ast-${version}";
|
||||
version = "1.0.1";
|
||||
src = fetchzip {
|
||||
url = "mirror://pypi/t/typed-ast/${name}.zip";
|
||||
sha256 = "1q69czr9ghnbd81hay71kgynn6mqi5nsgand9yw6dyw5bim5l154";
|
||||
pname = "typed-ast";
|
||||
version = "1.0.2";
|
||||
name = "${pname}-${version}";
|
||||
src = fetchPypi{
|
||||
inherit pname version;
|
||||
sha256 = "13e02b10479ddff07eb546f9638743702ab9b175bfa3cdf2482688df91b5766d";
|
||||
};
|
||||
# Only works with Python 3.3 and newer;
|
||||
disabled = !isPy3k && !(pythonOlder "3.3");
|
||||
disabled = pythonOlder "3.3";
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://pypi.python.org/pypi/typed-ast";
|
||||
description = "a fork of Python 2 and 3 ast modules with type comment support";
|
||||
|
Loading…
Reference in New Issue
Block a user