Python: move expressions in python-modules to their own folders

This commit is contained in:
Frederik Rietdijk
2017-11-05 10:45:54 +01:00
parent 37d5539aeb
commit 07eeeb3600
30 changed files with 30 additions and 30 deletions

View File

@@ -0,0 +1,18 @@
{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "pyaes";
version = "1.6.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "02c1b1405c38d3c370b085fb952dd8bea3fadcee6411ad99f312cc129c536d8f";
};
meta = {
description = "Pure-Python AES";
license = lib.licenses.mit;
homepage = https://github.com/ricmoo/pyaes;
};
}